net/http.response.bodyAllowed (method)

4 uses

	net/http (current package)
		server.go#L596: 	if !w.cw.chunking && w.bodyAllowed() {
		server.go#L1531: func (w *response) bodyAllowed() bool {
		server.go#L1606: 	if !w.bodyAllowed() {
		server.go#L1654: 	if w.req.Method != "HEAD" && w.contentLength != -1 && w.bodyAllowed() && w.contentLength != w.written {